home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue64 / construc / TDM64.dpr < prev    next >
Encoding:
Text File  |  2000-10-31  |  309 b   |  19 lines

  1. library TDM64;
  2. uses
  3.   WebBroker,
  4.   ISAPIApp,
  5.   WebMod in 'WebMod.pas' {WebModule1: TWebModule};
  6.  
  7. {$R *.RES}
  8.  
  9. exports
  10.   GetExtensionVersion,
  11.   HttpExtensionProc,
  12.   TerminateExtension;
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TWebModule1, WebModule1);
  17.   Application.Run;
  18. end.
  19.